Skip to content

Price information for a given sku

This endpoint returns an object for a given sku.

INFO

The object returned is the same object returned by all_prices_and_amounts.

Query parameter

  • artnr - required - the article number
  • sourcelanguage - required - the language that you want to request the prices for. Valid values are: (at, be, ch, dk, fi, fr, gl, it, nl, no, se). Where language actually means country.
  • factor - the factor that the price is multiplied with. The result is returned in factor_price.
  • profile - allows to apply certain rules depending on a profile. Not needed. (defaults to reimo)

Example

shell
curl --location 'https://api02.reimo-shops.de/api/extranet/rest/articles/checkPrice/900155?sourcelanguage=de' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer *****'

The response contains the following properties:

json
{
  "base_price": 0.0,
  "base_unit": "  ",
  "currencySign": "EUR",
  "dealer_price": 0.0,
  "deleivery_days": 0,
  "factor_price": 0.0,
  "factor_pseudo_price": 0.0,
  "hotdeal": false,
  "lifecycle": "E",
  "novelty": false,
  "price": 0.0,
  "producerSKU": "                              ",
  "pseudo_price": 0.0,
  "scalevolume1": 0,
  "scalevolume2": 0,
  "scalevolume3": 0,
  "stock": 11,
  "tax": 19
}

For more information on the properties, see: properties explained.